home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / telecomm / sticpsrc.lzh / SOURCE.ARC / KISS.H < prev    next >
C/C++ Source or Header  |  1990-01-07  |  264b  |  13 lines

  1. /* KISS TNC control */
  2. #define KISS_DATA    0x00
  3. #define KISS_SPEC    0x06
  4. #define KISS_QUIT    0xff
  5.  
  6. /* multiple-channel KISS TNC control */
  7. struct kiss {
  8.     struct interface *iface[16];    /* interface for each channel */
  9. };
  10.  
  11. #define NULLKISS    ((struct kiss *) 0)
  12.  
  13.